home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / GAWK / GAWK-2 / MISSING / GCVT.C < prev    next >
Text File  |  1990-07-29  |  129b  |  10 lines

  1. char    *
  2. gcvt(value, digits, buff)
  3. double    value;
  4. int    digits;
  5. char    *buff;
  6. {
  7.     sprintf(buff, "%*g", digits, value);
  8.     return (buff);
  9. }
  10.